home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1999 August / SGI Freeware 1999 August.iso / dist / fw_xemacs.idb / usr / freeware / lib / xemacs-20.4 / lisp / comint / comint-xemacs.el.z / comint-xemacs.el
Encoding:
Text File  |  1998-05-21  |  1.5 KB  |  54 lines

  1. ;;; comint-xemacs.el --- Face customizations for comint
  2.  
  3. ;; Copyright (C) 1997 by Free Software Foundation, Inc.
  4.  
  5. ;; Author: Steven L Baur <steve@altair.xemacs.org>
  6. ;; Keywords: help, faces
  7.  
  8. ;; This file is part of XEmacs.
  9.  
  10. ;; XEmacs is free software; you can redistribute it and/or modify it
  11. ;; under the terms of the GNU General Public License as published by
  12. ;; the Free Software Foundation; either version 2, or (at your option)
  13. ;; any later version.
  14.  
  15. ;; XEmacs is distributed in the hope that it will be useful, but
  16. ;; WITHOUT ANY WARRANTY; without even the implied warranty of
  17. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  18. ;; General Public License for more details.
  19.  
  20. ;; You should have received a copy of the GNU General Public License
  21. ;; along with XEmacs; see the file COPYING.  If not, write to the Free
  22. ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  23. ;; 02111-1307, USA.
  24.  
  25. ;;; Synched up with: Not in FSF
  26.  
  27. ;;; Commentary:
  28.  
  29. ;; Declare customizable faces for comint outside the main code so it can
  30. ;; be dumped with XEmacs.
  31.  
  32. ;;; Code:
  33.  
  34. (defgroup comint nil
  35.   "General command interpreter in a window stuff."
  36.   :group 'processes)
  37.  
  38. (defface comint-input-face '((((class color)
  39.                   (background dark))
  40.                  (:foreground "red"))
  41.                 (((class color)
  42.                   (background light))
  43.                  (:foreground "blue"))
  44.                 (t 
  45.                  (:bold t)))
  46.   "How to display user input for comint shells."
  47.   :group 'comint)
  48.  
  49.  
  50.  
  51. (provide 'comint-xemacs)
  52.  
  53. ;;; comint-xemacs.el ends here
  54.